#mainNav {
  /* Initial state: Transparent background */
  background: transparent;
  transition: background 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
}

/* Target the shrunk state */
#mainNav.navbar-shrink {
  /* Set to the body's background color: rgb(166,145,118) */
  background: rgb(166,145,118);
  /* You might want to adjust padding here too, but the background is the main change */
}

/* This rule ensures the background color is applied to the collapsed menu before scrolling */
#mainNav .navbar-toggler,
#mainNav .navbar-collapse {
  background: transparent; /* Start transparent, same as main nav */
}

/* Apply the shrunk background color when the navbar is collapsed OR when shrunk */
#mainNav.navbar-shrink .navbar-collapse,
#mainNav .navbar-collapse.show {
  background: rgb(166,145,118);
}


/* Custom styles to match the look in your screenshot */

/* Search pill */
.search-pill {
  background: transparent;
  border-radius: 999px;
  box-shadow: none;
  overflow: hidden;
  padding: 6px;
  border: 1px solid #eee;
}
.search-pill .form-control {
  border-radius: 999px;
  padding-left: 0.5rem;
  font-size: 0.95rem;
}

/* Categories wrapper */
.categories-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 6px;
  gap: 1rem;
}

/* Hide default scrollbar but keep scroll functionality */
.categories-wrapper::-webkit-scrollbar { height: 6px; }
.categories-wrapper::-webkit-scrollbar-track { background: transparent; }
.categories-wrapper::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.08); border-radius: 3px; }

.category-tab {
  color: #555;
  text-decoration: none;
  border-radius: 0;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.category-tab:focus {
  outline: none;
  box-shadow: none;
}

/* Active look */
.category-tab.active {
  color: #000;
}

/* underline indicator */
.tab-indicator {
  height: 3px;
  background: #222;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.18s ease, width 0.18s ease;
  border-radius: 2px;
}

/* Item cards */
.card-menu-item {
  min-height: 100%;
}
.card-menu-item .card-body {
  padding: 0.9rem;
}

/* Make results responsive */
@media (max-width: 767px) {
  .categories-wrapper { gap: 0.6rem; }
  #scrollRightBtn { display: none; }
}

 /* --- Hero & Video Styles --- */
 #hero {
  width: 100%;
  height: 100vh; 
  position: relative;
  overflow: hidden; 
  padding: 0;
  background-color: #000; /* Fallback color if video doesn't load */
}

#myVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 0; 
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 1; 
}

.container-content {
  position: relative;
  z-index: 2; 
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.logo-img {
  max-width: 300px; 
  height: auto;
}

/* --- Dark Modal CSS (Added) --- */
.modal-content-dark {
  background-color: #1f1f1f;
  border: 1px solid #333;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  font-family: 'Montserrat', sans-serif; /* Matches your site font */
}

.modal-header-dark {
  border-bottom: 1px solid #333;
}

.modal-footer-dark {
  border-top: 1px solid #333;
}

/* Custom Dark Inputs */
.form-control-dark {
  background-color: #2b2b2b;
  border: 1px solid #444;
  color: #e0e0e0;
}

.form-control-date{
  background-color: #2b2b2b;
  border: 1px solid #444;
  color: #888;
}


.form-control-dark:focus {
  background-color: #333;
  border-color: #fff; 
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}

.form-control-dark::placeholder {
  color: #888;
}

/* Custom Link Styling */
.link-light-custom {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.link-light-custom:hover {
  color: #fff;
  text-decoration: underline;
}

/* Dark Checkbox Styling */
.form-check-dark .form-check-input {
  background-color: #2b2b2b;
  border-color: #555;
}
.form-check-dark .form-check-input:checked {
  background-color: #fff;
  border-color: #fff;
}
.form-check-dark .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.15);
}
.form-check-dark .form-check-label {
  color: #ccc;
}

/* Remember Me + Forgot Password flex row */
.remember-forgot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Helper for Playfair Font */
.font-playfair {
  font-family: 'Playfair Display', serif;
}

/* Montserrat Font*/
.font-montserrat{
  font-family: 'Montserrat', serif;
}

element.style {
  background-color: rgb(0, 0, 0);
}

::selection {
background: #fcfcfc;
background: rgba(255,255,255,.2);
text-shadow: none;
}

body {
font-family: "Lora","Helvetica Neue",Helvetica,Arial,sans-serif;
position: relative;
width: 100%;
height: 100%;
color: #fff;
background-color: #000;
}

body {
margin: 0;
font-family: var(--bs-body-font-family);
font-size: var(--bs-body-font-size);
font-weight: var(--bs-body-font-weight);
line-height: var(--bs-body-line-height);
color: var(--bs-body-color);
text-align: var(--bs-body-text-align);
background-color: var(--bs-body-bg);
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}

*, *::before, *::after {
box-sizing: border-box;
}

:root, [data-bs-theme=light] {
--bs-carousel-indicator-active-bg: #fff;
--bs-carousel-caption-color: #fff;
}

:root {
--bs-breakpoint-xs: 0;
--bs-breakpoint-sm: 576px;
--bs-breakpoint-md: 768px;
--bs-breakpoint-lg: 992px;
--bs-breakpoint-xl: 1200px;
--bs-breakpoint-xxl: 1400px;
}

:root, [data-bs-theme=light] {
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-black: #000;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-gray-100: #f8f9fa;
--bs-gray-200: #e9ecef;
--bs-gray-300: #dee2e6;
--bs-gray-400: #ced4da;
--bs-gray-500: #adb5bd;
--bs-gray-600: #6c757d;
--bs-gray-700: #495057;
--bs-gray-800: #343a40;
--bs-gray-900: #212529;
--bs-primary: #42DCA3;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-primary-rgb: 66, 220, 163;
--bs-secondary-rgb: 108, 117, 125;
--bs-success-rgb: 25, 135, 84;
--bs-info-rgb: 13, 202, 240;
--bs-warning-rgb: 255, 193, 7;
--bs-danger-rgb: 220, 53, 69;
--bs-light-rgb: 248, 249, 250;
--bs-dark-rgb: 33, 37, 41;
--bs-primary-text-emphasis: #1a5841;
--bs-secondary-text-emphasis: #2b2f32;
--bs-success-text-emphasis: #0a3622;
--bs-info-text-emphasis: #055160;
--bs-warning-text-emphasis: #664d03;
--bs-danger-text-emphasis: #58151c;
--bs-light-text-emphasis: #495057;
--bs-dark-text-emphasis: #495057;
--bs-primary-bg-subtle: #d9f8ed;
--bs-secondary-bg-subtle: #e2e3e5;
--bs-success-bg-subtle: #d1e7dd;
--bs-info-bg-subtle: #cff4fc;
--bs-warning-bg-subtle: #fff3cd;
--bs-danger-bg-subtle: #f8d7da;
--bs-light-bg-subtle: #fcfcfd;
--bs-dark-bg-subtle: #ced4da;
--bs-primary-border-subtle: #b3f1da;
--bs-secondary-border-subtle: #c4c8cb;
--bs-success-border-subtle: #a3cfbb;
--bs-info-border-subtle: #9eeaf9;
--bs-warning-border-subtle: #ffe69c;
--bs-danger-border-subtle: #f1aeb5;
--bs-light-border-subtle: #e9ecef;
--bs-dark-border-subtle: #adb5bd;
--bs-white-rgb: 255, 255, 255;
--bs-black-rgb: 0, 0, 0;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
--bs-body-font-family: var(--bs-font-sans-serif);
--bs-body-font-size: 1rem;
--bs-body-font-weight: 400;
--bs-body-line-height: 1.5;
--bs-body-color: #212529;
--bs-body-color-rgb: 33, 37, 41;
--bs-body-bg: #fff;
--bs-body-bg-rgb: 255, 255, 255;
--bs-emphasis-color: #000;
--bs-emphasis-color-rgb: 0, 0, 0;
--bs-secondary-color: rgba(33, 37, 41, 0.75);
--bs-secondary-color-rgb: 33, 37, 41;
--bs-secondary-bg: #e9ecef;
--bs-secondary-bg-rgb: 233, 236, 239;
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
--bs-tertiary-color-rgb: 33, 37, 41;
--bs-tertiary-bg: #f8f9fa;
--bs-tertiary-bg-rgb: 248, 249, 250;
--bs-heading-color: inherit;
--bs-link-color: #42DCA3;
--bs-link-color-rgb: 66, 220, 163;
--bs-link-decoration: underline;
--bs-link-hover-color: #35b082;
--bs-link-hover-color-rgb: 53, 176, 130;
--bs-code-color: #d63384;
--bs-highlight-color: #212529;
--bs-highlight-bg: #fff3cd;
--bs-border-width: 1px;
--bs-border-style: solid;
--bs-border-color: #dee2e6;
--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
--bs-border-radius: 0.375rem;
--bs-border-radius-sm: 0.25rem;
--bs-border-radius-lg: 0.5rem;
--bs-border-radius-xl: 1rem;
--bs-border-radius-xxl: 2rem;
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
--bs-border-radius-pill: 50rem;
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
--bs-focus-ring-width: 0.25rem;
--bs-focus-ring-opacity: 0.25;
--bs-focus-ring-color: rgba(66, 220, 163, 0.25);
--bs-form-valid-color: #198754;
--bs-form-valid-border-color: #198754;
--bs-form-invalid-color: #dc3545;
--bs-form-invalid-border-color: #dc3545;
}


/* custom size */
.offcanvas-wider { --bs-offcanvas-width: 40rem; max-width: 100vw; }

/* top/bottom offcanvas height */
.offcanvas-tall { --bs-offcanvas-height: 60vh; max-height: 100vh; }

/* responsive example */
@media (min-width: 992px) {
.offcanvas-responsive { --bs-offcanvas-width: 28rem; }
}


.gooddaylogoccarosel-img {
  height: 400px;                  /* keep the fixed height you had */
  object-fit: cover;              /* preserve cover behavior */
  object-position: 50% 30%;       /* move the focal point up (50% horizontally, 30% vertically) */
  display: block;
  margin-top: 0;                  /* remove extra top margin */
  transform: translateY(-30px);   /* nudge the whole image/frame slightly upward */
  transition: transform .15s ease;/* optional smoothness if you animate later */
}

:root{
  --panel-width: 320px;
  --gap: 24px;
  --accent: #ef2d7f;
  --muted: #9aa0a6;
  --bg: #fff;
  --shadow: 0 6px 18px rgba(16,24,40,0.08);
}

*{box-sizing:border-box}
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
  color:#222;
  background:#f6f6f7;
}
.site-header{
  display:flex;
  gap:12px;
  align-items:center;
  padding:18px 36px;
  background:white;
  box-shadow:0 1px 0 rgba(0,0,0,0.04);
  position:sticky;
  top:0;
  z-index:20;
}
.tabs{display:flex;gap:8px;margin-left:16px}
.tab{background:transparent;border:none;padding:8px 12px;border-radius:8px;cursor:pointer}
.tab.active{border-bottom:3px solid #000;padding-bottom:6px}

#open-cart-btn{margin-left:auto;padding:8px 12px;border-radius:8px;background:#eee;border:1px solid #ddd;cursor:pointer}

/* Page layout */
.page{display:flex;gap:var(--gap);padding:32px 48px}
.menu{flex:1;min-width:0}
.products{display:grid;grid-template-columns:1fr;gap:18px;max-width:900px}
.product{display:flex;align-items:center;background:white;padding:14px;border-radius:12px;border:1px solid #ececec;box-shadow:var(--shadow)}
.product .info{flex:1;padding-right:12px}
.product h3{margin:0 0 8px 0}
.product .price{color:var(--accent);font-weight:600}
.product .old{color:var(--muted);text-decoration:line-through;margin-left:8px}
.product .media{display:flex;flex-direction:column;align-items:center;gap:8px}
.product img{width:90px;height:90px;border-radius:10px;object-fit:cover}
.add{width:36px;height:36px;border-radius:50%;border:none;background:white;box-shadow:0 2px 8px rgba(0,0,0,0.12);cursor:pointer}

/* Cart panel */
.cart-panel{
  position:fixed;
  right:var(--gap);
  top:88px;
  width:var(--panel-width);
  background:var(--bg);
  border-radius:10px;
  border:1px solid #e6e6e6;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  height:calc(100vh - 120px);
  transform:translateX(0);
  transition:transform .28s cubic-bezier(.2,.9,.2,1),opacity .2s;
  z-index:30;
}
.cart-panel.closed{transform:translateX(calc(var(--panel-width) + var(--gap) + 20px));opacity:0.98}
.cart-header{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;border-bottom:1px solid #f0f0f0}
.tabs-inline{display:flex;gap:8px}
.fulfill-tab{background:#f5f5f6;border-radius:8px;padding:8px 12px;border:none;cursor:pointer}
.fulfill-tab.active{background:white;border:1px solid #e6e6e6;box-shadow:0 2px 8px rgba(0,0,0,0.04)}
#close-cart{background:transparent;border:none;font-size:18px;cursor:pointer}

.cart-body{flex:1;padding:28px 18px;display:flex;align-items:center;justify-content:center;position:relative}
.empty-state{text-align:center;color:#666}
.empty-state img{display:block;margin:0 auto 12px}
.cart-items{list-style:none;margin:0;padding:0;width:100%}
.cart-item{display:flex;align-items:center;justify-content:space-between;padding:10px;border-bottom:1px dashed #eee}
.cart-item .meta{max-width:60%}
.cart-footer{padding:12px 16px;border-top:1px solid #f0f0f0;display:flex;flex-direction:column;gap:8px}
.totals{display:flex;justify-content:space-between;align-items:center;font-weight:600}
#checkout{padding:10px;border-radius:8px;border:none;background:var(--accent);color:white;cursor:pointer}
#checkout:disabled{opacity:.5;cursor:not-allowed;background:#ccc}

/* handle */
.cart-handle{position:absolute;left:-36px;top:12px;width:34px;height:34px;border-radius:8px;border:1px solid #e6e6e6;background:white;box-shadow:0 4px 12px rgba(0,0,0,0.06);cursor:pointer;font-size:12px}

/* Overlay for mobile */
.overlay{position:fixed;inset:0;background:rgba(0,0,0,0.4);z-index:25;}

/* Responsive */
@media (max-width:900px){
  .page{padding:20px}
  .cart-panel{right:12px;top:72px;width:88%;max-width:420px;height:80vh}
  .cart-panel.closed{transform:translateX(120%) }
  .cart-handle{display:none}
  #open-cart-btn{display:block}
}